home *** CD-ROM | disk | FTP | other *** search
- ;/*
- ;** © 1996 RBF Software. Author: Ray Burt-Frost
- ;** PROGRAMNAME: HD_Install
- ;** FUNCTION: Installs main parts of Octamed_Soundstudio on HD
- ;**
- ;** $HISTORY: 28 July 96 : initial release
- ;*/
-
- ;char version = "$VER: Octamed_Installer 001.006 (24 May 1995)"
-
- (set @execute-dir "RAM:")
- (set insttype
- (askchoice
- (prompt "It is IMPORTANT that you select the HELP button NOW!:")
- (choices "Hard disk Only")
- (help "You can only use this script to install onto your HD "
- "partition and you must have the installer in sys:c "
- " "
- "If not, you will need to alter the HD_Install.info "
- "to look for the installer in a different sys:drawer. "
- " "
- "Please remember that as your name and address are "
- "encoded onto the diskette you have purchased, that "
- "when the program is first run, it will do a customer "
- "check on disk one to verify your legal ownership. "
- " "
- "Sorry, we have been forced to do this, the previous "
- "versions were so badly pirated, ( it even turned up "
- "on BBS's ), that we had no choice in doing this to "
- "protect our program, we are now able to quite easily "
- "trace any offender that passes on a copy of disk one "
- "to a freind without perhaps realising it is illegal. "
- " "
- "Please note that just in case you only have the one "
- "drive, once the ownercode is authenticated, you can "
- "remove the floppy from your drive as it will no "
- "longer be required. "
- " "
- "Finaly, please only use backups of these disks and "
- "allways keep the supplied disks write protected. "
- )
- )
- )
-
- (if (= insttype 0) (set toboot 1))
-
- ; *************' Hard Disk Installation
- (
- (set inst_dir (askdir (prompt "Please click on the HELP button.")
- (default @default-dest)
- (help "You must select the partition where OctaMED will be installed to. "
- "I will create a drawer called 'OctaMED_Soundstudio' and install OctaMED there."
- )))
- (set inst_dest (tackon inst_dir "OctaMED_Soundstudio"))
- (makedir inst_dest)
- (copyfiles
- (source "OctaMED_Soundstudio:OctaMED")
- (dest inst_dest)
- )
- (copyfiles
- (source "OctaMED_Soundstudio:OctaMED.info")
- (dest inst_dest)
- )
- (copyfiles
- (source "OctaMED_Soundstudio:Player_8.code")
- (dest inst_dest)
- )
- (copyfiles
- (source "OctaMED_Soundstudio:Player_midi.code")
- (dest inst_dest)
- )
- (copyfiles
- (source "OctaMED_Soundstudio:Player_mix.code")
- (dest inst_dest)
- )
- (copyfiles
- (source "OctaMED_Soundstudio:Player_std.code")
- (dest inst_dest)
- )
- (copyfiles
- (source "OctaMED_Soundstudio:S/Soundstudio.config")
- (dest inst_dest)
- )
- (copyfiles
- (source "OctaMED_Soundstudio:Soundstudio.defkeyboard")
- (dest inst_dest)
- )
- (copyfiles
- (source "OctaMED_Soundstudio:Soundstudio.defprogkeys")
- (dest inst_dest)
- )
- (copyfiles
- (source "OctaMED_Soundstudio:Icons")
- (dest ("%s/Icons" inst_dest))
- (all)
- )
- (copyfiles
- (source "OctaMED_Soundstudio:Fonts")
- (dest "Fonts:")
- (all)
- )
-
- (copylib
- (prompt "Installing \"powerpacker.library\" by Nico Francois")
- (confirm)
- (help "\"PowerPacker.library\" is written by Nico Francois.\n"
- "You can save and load \"PowerPacked\" samples and modules\n"
- "into Octamed Soundstudio which will enable you to save\n"
- "valuable disk space")
- (source "OctaMED_Soundstudio:Libs/powerpacker.library")
- (dest "LIBS:")
- )
- (copylib
- (prompt "Installing \"lh.library\" by Holger P. Krekel and \n"
- " Olaf `Olsen' Barthel")
- (confirm)
- (help "\"lh.library\" was written by Holger P. Krekel\n"
- "& Olaf `Olsen' Barthel.\n"
- "It uses highly optimized assembly language versions\n"
- "of LhArc data decompression routines, for a fast and\n"
- "massive storage saving.")
- (source "OctaMED_Soundstudio:Libs/lh.library")
- (dest "LIBS:")
- )
- (copylib
- (prompt "Installing AT's \"amigaguide.library\"")
- (confirm)
- (help "\"amigaguide.library\" has been shipped as standard\n"
- "with Amiga's since version 2.1 of Workbench.\n\n"
- "If you are using 3.0 or above, installation of this\n"
- "library is NOT recommended, as you should have a\n"
- "newer version of the library.")
- (source "OctaMED_Soundstudio:Libs/amigaguide.library")
- (dest "LIBS:")
- )
- (copylib
- (Prompt "Installing AT's \"asl.library\"")
- (confirm)
- (help "\"asl.library\" is part of the Amiga system software\n"
- "since version 2.xx. It vastly improves the File and\n"
- "font requesters.\n\n"
- "Kickstart 3.0+ users (A1200/4000) should not install this\n"
- "library, as you should already have the latest version\n"
- "installed in your LIBS: drawer.")
- (source "OctaMED_Soundstudio:Libs/asl.library")
- (dest "LIBS:")
- )
- (askdisk
- (prompt "Insert OctaMED_Soundstudio2 in any Drive")
- (dest "OctaMED_Soundstudio2")
- (help @askdisk-help)
- )
- (copyfiles
- (source "OctaMED_Soundstudio2:Help")
- (dest ("%s/Help" inst_dest))
- (all)
- )
- (copyfiles
- (source "OctaMED_Soundstudio2:Rexx")
- (dest ("%s/Rexx" inst_dest))
- (all)
- )
- (copyfiles
- (source "OctaMED_Soundstudio2:S/OctaMED_Soundstudio.info")
- (dest inst_dir)
-
- ))